home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir42 / card_ce.zip / PROCURA.PRG < prev    next >
Text File  |  1994-07-23  |  2KB  |  77 lines

  1. use card
  2. * use b:card
  3. stor spac(15) to compp, fnamep, lnamep, teamp
  4. stor spac(4) to yearp, cardnp
  5. set color to r+
  6. @ 06,20 say 'Company Name.......(A)--> ' get compp pict '!!!!!!!!!!!!!!!'
  7. @ 08,20 say 'Year...............(B)--> ' get yearp
  8. @ 10,20 say 'Player First Name..(C)--> ' get fnamep pict '!!!!!!!!!!!!!!!'
  9. @ 12,20 say 'Playes Last Name...(D)--> ' get lnamep pict '!!!!!!!!!!!!!!!'
  10. @ 14,20 say 'Team Name..........(E)--> ' get teamp pict '!!!!!!!!!!!!!!!'
  11. @ 16,20 say 'Card Number........(F)--> ' get cardnp pict '!!!!'
  12. @ 21,01 say 'For combination -- 1 (A/B)  2 (A/D)  3 (A/B/D)  4 ì
  13. (A/B/F)  Q (Go to MAIN MENU)' 
  14. set color to w+
  15. @ 02,30 say 'S E A R C H  C A R D'
  16. set color to gr+
  17. @ 06,40 say 'A'
  18. @ 08,40 say 'B'
  19. @ 10,40 say 'C'
  20. @ 12,40 say 'D'
  21. @ 14,40 say 'E'
  22. @ 16,40 say 'F'
  23. @ 21,20 say '1'
  24. @ 21,29 say '2'
  25. @ 21,38 say '3'
  26. @ 21,49 say '4'
  27. @ 21,60 say 'Q'
  28. set color to w
  29. stor ' ' to op
  30. set color to g
  31. @ 22,01 say 'Fill any or all then press letter or number for ì
  32. search --> '
  33. set color to gr+
  34. read
  35. @ 22,49 say 'SEARCH --> ' get op
  36. set color to w+
  37. read
  38. if uppe(op) = "Q"
  39.     clear gets
  40.     return
  41. endif
  42. if uppe(op) = "A"
  43.     loca for comp=compp
  44. endif
  45. if uppe(op) = "B"
  46.     loca for year=yearp
  47. endif
  48. if uppe(op) = "C"
  49.     loca for fname=fnamep
  50. endif
  51. if uppe(op) = "D"
  52.     loca for lname=lnamep
  53. endif
  54. if uppe(op) = "E"
  55.     loca for team=teamp
  56. endif
  57. if uppe(op) = "F"
  58.     loca for cardn=cardnp
  59. endif
  60. if uppe(op) = "1"
  61.     loca for comp=compp .and. year=yearp
  62. endif
  63. if uppe(op) = "2"
  64.     loca for comp=compp .and. lname=lnamep
  65. endif
  66. if uppe(op) = "3"
  67.     loca for comp=compp .and. year=yearp .and. lname=lnamep
  68. endif
  69. if uppe(op) = "4"
  70.     loca for comp=compp .and. year=yearp .and. cardn=cardnp
  71. endif
  72. do while .not. eof()
  73.     do mostra
  74.         cont
  75.     endif
  76. enddo
  77. return